summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/menu-access/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/menu-access/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/menu-access/page.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/menu-access/page.tsx b/app/[lng]/evcp/(evcp)/menu-access/page.tsx
index 5c87f754..f632bc9e 100644
--- a/app/[lng]/evcp/(evcp)/menu-access/page.tsx
+++ b/app/[lng]/evcp/(evcp)/menu-access/page.tsx
@@ -7,7 +7,7 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton";
import { searchParamsUsersCache } from "@/lib/admin-users/validations"
import { getUsersNotPartners } from "@/lib/users/service";
import { UserAccessControlTable } from "@/lib/users/access-control/users-table";
-
+import { InformationButton } from "@/components/information/information-button";
interface IndexPageProps {
searchParams: Promise<SearchParams>;
}
@@ -28,7 +28,10 @@ export default async function IndexPage(props: IndexPageProps) {
<Shell className="gap-2">
<div className="flex items-center justify-between space-y-2">
<div>
- <h2 className="text-2xl font-bold tracking-tight">메뉴 접근제어 관리</h2>
+ <div className="flex items-center gap-2">
+ <h2 className="text-2xl font-bold tracking-tight">메뉴 접근제어 관리</h2>
+ <InformationButton pageCode="evcp/menu-access" />
+ </div>
<p className="text-muted-foreground">
화면, 메뉴별로 접근 통제를 할 수 있습니다. 도메인을 설정하면 해당 도메인에 대한 접근만 가능합니다.
</p>